home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue63 / Debug / Demos / ConvertUnit1.dfm < prev    next >
Encoding:
Text File  |  2000-10-01  |  1.4 KB  |  76 lines

  1. object ScannerTester: TScannerTester
  2.   Left = 299
  3.   Top = 251
  4.   Width = 520
  5.   Height = 97
  6.   Caption = 'Address Lookup'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 16
  20.     Top = 8
  21.     Width = 56
  22.     Height = 13
  23.     Caption = '&Code Offset'
  24.     FocusControl = AddressEdit
  25.   end
  26.   object Label2: TLabel
  27.     Left = 376
  28.     Top = 8
  29.     Width = 58
  30.     Height = 13
  31.     Caption = 'Line number'
  32.   end
  33.   object Label3: TLabel
  34.     Left = 240
  35.     Top = 8
  36.     Width = 48
  37.     Height = 13
  38.     Caption = 'Unit name'
  39.   end
  40.   object UnitNameEdit: TEdit
  41.     Left = 240
  42.     Top = 24
  43.     Width = 113
  44.     Height = 21
  45.     Enabled = False
  46.     ReadOnly = True
  47.     TabOrder = 0
  48.   end
  49.   object AddressEdit: TEdit
  50.     Left = 16
  51.     Top = 24
  52.     Width = 121
  53.     Height = 21
  54.     TabOrder = 1
  55.     Text = '$1000'
  56.   end
  57.   object ToUnitLineBtn: TButton
  58.     Left = 160
  59.     Top = 24
  60.     Width = 57
  61.     Height = 25
  62.     Caption = '&Lookup'
  63.     TabOrder = 2
  64.     OnClick = ToUnitLineBtnClick
  65.   end
  66.   object LineNumberEdit: TEdit
  67.     Left = 376
  68.     Top = 24
  69.     Width = 113
  70.     Height = 21
  71.     Enabled = False
  72.     ReadOnly = True
  73.     TabOrder = 3
  74.   end
  75. end
  76.